home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / cdity / ModeProSrc.lha / Daemon / MPLocale.h < prev    next >
C/C++ Source or Header  |  1998-11-22  |  4KB  |  126 lines

  1. #ifndef MPLOCALE_H
  2. #define MPLOCALE_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #ifdef CATCOMP_ARRAY
  18. #undef CATCOMP_NUMBERS
  19. #undef CATCOMP_STRINGS
  20. #define CATCOMP_NUMBERS
  21. #define CATCOMP_STRINGS
  22. #endif
  23.  
  24. #ifdef CATCOMP_BLOCK
  25. #undef CATCOMP_STRINGS
  26. #define CATCOMP_STRINGS
  27. #endif
  28.  
  29.  
  30. /****************************************************************************/
  31.  
  32.  
  33. #ifdef CATCOMP_NUMBERS
  34.  
  35. #define MSG_COMMODITY_TITLE 2
  36. #define MSG_ITEM_NEW_NAME 100
  37. #define MSG_ITEM_NO_NAME 101
  38. #define MSG_REQ_OK 200
  39. #define MSG_REQ_CANT_QUIT_SCREENS 201
  40. #define MSG_REQ_CANT_QUIT_PATCHED_OVER 202
  41. #define MSG_REQ_LOAD_ERROR 203
  42. #define MSG_REQ_USE_DEFAULT 204
  43. #define MSG_REQ_COULDNT_OPEN_LIBS 205
  44. #define MSG_REQ_NAME_VER_FMT 861
  45. #define MSG_ERR_COULDNT_FIND_PREFS 862
  46. #define MSG_OLD_SCREENMODES 900
  47. #define MSG_NEW_SCREEN_2 1010
  48. #define MSG_NEW_SCREEN_2_BUTTONS 1011
  49. #define MSG_NEW_PUBSCREEN 2010
  50. #define MSG_NEW_PUBSCREEN_BUTTONS 2011
  51.  
  52. #endif /* CATCOMP_NUMBERS */
  53.  
  54.  
  55. /****************************************************************************/
  56.  
  57.  
  58. #ifdef CATCOMP_STRINGS
  59.  
  60. #define MSG_COMMODITY_TITLE_STR "Screen Mode Promoter."
  61. #define MSG_ITEM_NEW_NAME_STR "New"
  62. #define MSG_ITEM_NO_NAME_STR "<No Name>"
  63. #define MSG_REQ_OK_STR "Ok"
  64. #define MSG_REQ_CANT_QUIT_SCREENS_STR "ModePro cannot quit until the\nfollowing screens are closed:"
  65. #define MSG_REQ_CANT_QUIT_PATCHED_OVER_STR "ModePro cannot quit.\n\nAnother program has modified the\nsystem functions that ModePro has\npatched.  Remove other patches before\nquitting ModePro."
  66. #define MSG_REQ_LOAD_ERROR_STR "Load Error"
  67. #define MSG_REQ_USE_DEFAULT_STR "Don't Promote"
  68. #define MSG_REQ_COULDNT_OPEN_LIBS_STR "Couldn't open the following libraries:"
  69. #define MSG_REQ_NAME_VER_FMT_STR "\n  %s version %ld"
  70. #define MSG_ERR_COULDNT_FIND_PREFS_STR "Couldn't find ModePro Prefs.\n  Check path '%s'."
  71. #define MSG_OLD_SCREENMODES_STR "Old:"
  72. #define MSG_NEW_SCREEN_2_STR "An unknown screen has been requested.\n  Screen Name: %s\n  Program Name: %s\n  Screen Mode: %s\n\nHow do you want to promote this screen?"
  73. #define MSG_NEW_SCREEN_2_BUTTONS_STR "Screen Name|Program Name|Screen Mode|Cancel"
  74. #define MSG_NEW_PUBSCREEN_STR "An unknown Public Screen has been requested.\n  Public Name: %s\n\nDo you want to create an entry for this screen?"
  75. #define MSG_NEW_PUBSCREEN_BUTTONS_STR "Yes|Cancel"
  76.  
  77. #endif /* CATCOMP_STRINGS */
  78.  
  79.  
  80. /****************************************************************************/
  81.  
  82.  
  83. #ifdef CATCOMP_ARRAY
  84.  
  85. struct CatCompArrayType
  86. {
  87.     LONG   cca_ID;
  88.     STRPTR cca_Str;
  89. };
  90.  
  91. static const struct CatCompArrayType CatCompArray[] =
  92. {
  93.     {MSG_COMMODITY_TITLE,(STRPTR)MSG_COMMODITY_TITLE_STR},
  94.     {MSG_ITEM_NEW_NAME,(STRPTR)MSG_ITEM_NEW_NAME_STR},
  95.     {MSG_ITEM_NO_NAME,(STRPTR)MSG_ITEM_NO_NAME_STR},
  96.     {MSG_REQ_OK,(STRPTR)MSG_REQ_OK_STR},
  97.     {MSG_REQ_CANT_QUIT_SCREENS,(STRPTR)MSG_REQ_CANT_QUIT_SCREENS_STR},
  98.     {MSG_REQ_CANT_QUIT_PATCHED_OVER,(STRPTR)MSG_REQ_CANT_QUIT_PATCHED_OVER_STR},
  99.     {MSG_REQ_LOAD_ERROR,(STRPTR)MSG_REQ_LOAD_ERROR_STR},
  100.     {MSG_REQ_USE_DEFAULT,(STRPTR)MSG_REQ_USE_DEFAULT_STR},
  101.     {MSG_REQ_COULDNT_OPEN_LIBS,(STRPTR)MSG_REQ_COULDNT_OPEN_LIBS_STR},
  102.     {MSG_REQ_NAME_VER_FMT,(STRPTR)MSG_REQ_NAME_VER_FMT_STR},
  103.     {MSG_ERR_COULDNT_FIND_PREFS,(STRPTR)MSG_ERR_COULDNT_FIND_PREFS_STR},
  104.     {MSG_OLD_SCREENMODES,(STRPTR)MSG_OLD_SCREENMODES_STR},
  105.     {MSG_NEW_SCREEN_2,(STRPTR)MSG_NEW_SCREEN_2_STR},
  106.     {MSG_NEW_SCREEN_2_BUTTONS,(STRPTR)MSG_NEW_SCREEN_2_BUTTONS_STR},
  107.     {MSG_NEW_PUBSCREEN,(STRPTR)MSG_NEW_PUBSCREEN_STR},
  108.     {MSG_NEW_PUBSCREEN_BUTTONS,(STRPTR)MSG_NEW_PUBSCREEN_BUTTONS_STR},
  109. };
  110.  
  111. #endif /* CATCOMP_ARRAY */
  112.  
  113.  
  114. /****************************************************************************/
  115.  
  116.  
  117. struct LocaleInfo
  118. {
  119.     APTR li_LocaleBase;
  120.     APTR li_Catalog;
  121. };
  122.  
  123.  
  124.  
  125. #endif /* MPLOCALE_H */
  126.